home *** CD-ROM | disk | FTP | other *** search
/ PCGUIA 127 / PC Guia 127.iso / Software / Utils / GParted Live CD / Bin / gparted-livecd-0.2.2.iso / usr_sqfs / bin / diskcopy < prev    next >
Encoding:
Text File  |  2002-02-21  |  295 b   |  10 lines

  1. #!/bin/sh
  2. echo -n "Insert source disk in first floppy drive, then hit enter"
  3. read ans;
  4. MCOOKIE=`mcookie`
  5. dd if=/dev/fd0 of=/tmp/dcopy.$MCOOKIE
  6. echo -n "Remove source disk and insert destination disk, then hit enter"
  7. read ans;
  8. dd of=/dev/fd0 if=/tmp/dcopy.$MCOOKIE
  9. /bin/rm -f /tmp/dcopy.$MCOOKIE
  10.